github.com/jackc/pgx/v5/pgconn.scramClient.iterations (field)

6 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		auth_scram.go#L175: 	iterations           int
		auth_scram.go#L283: 	sc.iterations, err = strconv.Atoi(string(iterationsStr))
		auth_scram.go#L284: 	if err != nil || sc.iterations <= 0 {
		auth_scram.go#L291: 	if sc.iterations > maxScramIterations {
		auth_scram.go#L292: 		return fmt.Errorf("SCRAM iteration count from server too high: %d (max %d)", sc.iterations, maxScramIterations)
		auth_scram.go#L322: 	sc.saltedPassword, err = pbkdf2.Key(sha256.New, sc.password, sc.salt, sc.iterations, 32)